home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / dissem / dissdemo.dir / 00015_Script_15 < prev    next >
Text File  |  1999-04-25  |  661b  |  34 lines

  1.  on enterframe
  2.   
  3.   puppetsprite 7, true
  4.   puppetsprite 8, true
  5.   puppetsprite 9, true
  6.   puppetsprite 10, true
  7.   
  8.   
  9.   if rollover (7) then set the castnum of sprite 7 to 13
  10.   else 
  11.     set the castnum of sprite 7 to 8
  12.   end if
  13.   
  14.   if rollover (8) then set the castnum of sprite 8 to 14
  15.   else 
  16.     set the castnum of sprite 8 to 8
  17.   end if
  18.   
  19.   if rollover (9) then set the castnum of sprite 9 to 15
  20.   else 
  21.     set the castnum of sprite 9 to 9
  22.   end if
  23.   
  24.   if rollover (10) then set the castnum of sprite 10 to 21
  25.   else 
  26.     set the castnum of sprite 10 to 19
  27.   end if
  28.   
  29. end enterframe
  30.  
  31.  
  32. on exitFrame
  33.   go to the frame
  34. end